home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / buffy.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  1KB  |  40 lines

  1. /* 
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */
  18.  
  19. typedef struct buffy_t
  20. {
  21.   char *path;
  22. #ifdef BUFFY_SIZE
  23.   long size;
  24. #endif            /* BUFFY_SIZE */
  25.   struct buffy_t *next;
  26.   short new;        /* mailbox has new mail */
  27.   short notified;    /* user has been notified */
  28.   short magic;        /* mailbox type */
  29.   short newly_created;    /* mbox or mmdf just popped into existence */
  30. }
  31. BUFFY;
  32.  
  33. WHERE BUFFY *Incoming INITVAL (0);
  34. WHERE short BuffyTimeout INITVAL (3);
  35.  
  36. #ifdef BUFFY_SIZE
  37. BUFFY *mutt_find_mailbox (const char *path);
  38. void mutt_update_mailbox (BUFFY * b);
  39. #endif
  40.